home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / include / xmms / configfile.h next >
C/C++ Source or Header  |  2005-12-20  |  3KB  |  75 lines

  1. /*  XMMS - Cross-platform multimedia player
  2.  *  Copyright (C) 1998-2000  Peter Alm, Mikael Alm, Olle Hallnas,
  3.  *                           Thomas Nilsson and 4Front Technologies
  4.  *  Copyright (C) 1999-2004  Haavard Kvaalen
  5.  *
  6.  *  This program is free software; you can redistribute it and/or modify
  7.  *  it under the terms of the GNU General Public License as published by
  8.  *  the Free Software Foundation; either version 2 of the License, or
  9.  *  (at your option) any later version.
  10.  *
  11.  *  This program is distributed in the hope that it will be useful,
  12.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.  *  GNU General Public License for more details.
  15.  *
  16.  *  You should have received a copy of the GNU General Public License
  17.  *  along with this program; if not, write to the Free Software
  18.  *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  19.  */
  20. #ifndef XMMS_CONFIGFILE_H
  21. #define XMMS_CONFIGFILE_H
  22.  
  23. #include <glib.h>
  24.  
  25. typedef struct
  26. {
  27.     gchar *key;
  28.     gchar *value;
  29. }
  30. ConfigLine;
  31.  
  32. typedef struct
  33. {
  34.     gchar *name;
  35.     GList *lines;
  36. }
  37. ConfigSection;
  38.  
  39. typedef struct
  40. {
  41.     GList *sections;
  42. }
  43. ConfigFile;
  44.  
  45. #ifdef __cplusplus
  46. extern "C" {
  47. #endif
  48.  
  49. ConfigFile *xmms_cfg_new(void);
  50. ConfigFile *xmms_cfg_open_file(gchar * filename);
  51. gboolean xmms_cfg_write_file(ConfigFile * cfg, gchar * filename);
  52. void xmms_cfg_free(ConfigFile * cfg);
  53. ConfigFile *xmms_cfg_open_default_file(void);
  54. gboolean xmms_cfg_write_default_file(ConfigFile * cfg);
  55.  
  56. gboolean xmms_cfg_read_string(ConfigFile * cfg, gchar * section, gchar * key, gchar ** value);
  57. gboolean xmms_cfg_read_int(ConfigFile * cfg, gchar * section, gchar * key, gint * value);
  58. gboolean xmms_cfg_read_boolean(ConfigFile * cfg, gchar * section, gchar * key, gboolean * value);
  59. gboolean xmms_cfg_read_float(ConfigFile * cfg, gchar * section, gchar * key, gfloat * value);
  60. gboolean xmms_cfg_read_double(ConfigFile * cfg, gchar * section, gchar * key, gdouble * value);
  61.  
  62. void xmms_cfg_write_string(ConfigFile * cfg, gchar * section, gchar * key, gchar * value);
  63. void xmms_cfg_write_int(ConfigFile * cfg, gchar * section, gchar * key, gint value);
  64. void xmms_cfg_write_boolean(ConfigFile * cfg, gchar * section, gchar * key, gboolean value);
  65. void xmms_cfg_write_float(ConfigFile * cfg, gchar * section, gchar * key, gfloat value);
  66. void xmms_cfg_write_double(ConfigFile * cfg, gchar * section, gchar * key, gdouble value);
  67.  
  68. void xmms_cfg_remove_key(ConfigFile * cfg, gchar * section, gchar * key);
  69.  
  70. #ifdef __cplusplus
  71. }
  72. #endif
  73.  
  74. #endif
  75.